home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / htpairen.jav < prev    next >
Text File  |  1995-10-14  |  1KB  |  57 lines

  1. /*
  2.   File: HTPairEnumeration.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.   13Oct95  dl                 Changed protection statuses
  12.  
  13. */
  14.   
  15. package collections;
  16.  
  17. import java.util.Enumeration;
  18. import java.util.NoSuchElementException;
  19.  
  20. /**
  21.  *
  22.  * Enumerator for paircollections based on hash tables
  23.  * @author Doug Lea
  24.  * @version 0.93
  25.  *
  26.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  27. **/
  28. final class HTPairEnumeration extends CEImpl {
  29.   private LLPair tab_[];
  30.   private LLPair cell_;
  31.   private int row_;
  32.   private boolean usekeys_;
  33.  
  34.   public HTPairEnumeration(UpdatableCollection c, LLPair tab[], boolean usekeys) { 
  35.     super(c);
  36.     tab_ = tab;
  37.     row_ = 0;
  38.     cell_ = null;
  39.     usekeys_ = usekeys;
  40.   }
  41.  
  42. /**
  43.  * Implements java.util.Enumeration.nextElement.
  44.  * @see java.util.Enumeration#nextElement
  45. **/
  46.   public Object nextElement() { 
  47.     decRemaining();
  48.     // if this loop fails, then we've not detected a version change?
  49.     while (cell_ == null) cell_ = tab_[row_++];
  50.     Object v = (usekeys_)? cell_.key() : cell_.element(); 
  51.     cell_ = (LLPair)(cell_.next());
  52.     return v;
  53.   }
  54.             
  55. }
  56.  
  57.